docs: don't use <quote>
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 4 Feb 2014 22:42:22 +0000 (17:42 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 4 Feb 2014 22:42:22 +0000 (17:42 -0500)
gtk/gtkdialog.c
gtk/gtktreemodel.c

index 51a5d94046edbae2d6d78d113bcc16e1226d095f..89f04e8150c5544130b6ed97c267357056b671a2 100644 (file)
@@ -57,7 +57,7 @@
  * GTK+ treats a dialog as a window split vertically. The top section is a
  * #GtkVBox, and is where widgets such as a #GtkLabel or a #GtkEntry should
  * be packed. The bottom area is known as the
- * <quote>action_area</quote>. This is generally used for
+ * “action area”. This is generally used for
  * packing buttons into the dialog which may perform functions such as
  * cancel, ok, or apply.
  *
index f12309bf76010ebe4d7bcaf5af6b4006670881e5..c0bfa030455f04bf3112cf84a7f8b3fe2501b0a9 100644 (file)
  *
  * Models are accessed on a node/column level of granularity. One can
  * query for the value of a model at a certain node and a certain
- * column on that node. There are two structures used to reference
- * a particular node in a model. They are the #GtkTreePath-struct and the
- * #GtkTreeIter-struct (<abbrev>iter</abbrev> is short
- * for <quote>iterator</quote>). Most of the interface
- * consists of operations on a #GtkTreeIter-struct.
+ * column on that node. There are two structures used to reference a
+ * particular node in a model. They are the #GtkTreePath-struct and
+ * the #GtkTreeIter-struct (“iter” is short for iterator). Most of the
+ * interface consists of operations on a #GtkTreeIter-struct.
  *
  * A path is essentially a potential node. It is a location on a model
  * that may or may not actually correspond to a node on a specific
  * model. The #GtkTreePath-struct can be converted into either an
  * array of unsigned integers or a string. The string form is a list
  * of numbers separated by a colon. Each number refers to the offset
- * at that level. Thus, the path <quote>0</quote> refers to the root
- * node and the path <quote>2:4</quote> refers to the fifth child of
+ * at that level. Thus, the path `0` refers to the root
+ * node and the path `2:4` refers to the fifth child of
  * the third node.
  *
  * By contrast, a #GtkTreeIter-struct is a reference to a specific node on
  *
  * To help show some common operation of a model, some examples are
  * provided. The first example shows three ways of getting the iter at
- * the location <quote>3:2:5</quote>. While the first method shown is
+ * the location `3:2:5`. While the first method shown is
  * easier, the second is much more common, as you often get paths from
  * callbacks.
  *